home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xml4j.jar / org / w3c / dom / Node.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-08-30  |  1.4 KB  |  53 lines

  1. package org.w3c.dom;
  2.  
  3. public interface Node {
  4.    short ELEMENT_NODE = 1;
  5.    short ATTRIBUTE_NODE = 2;
  6.    short TEXT_NODE = 3;
  7.    short CDATA_SECTION_NODE = 4;
  8.    short ENTITY_REFERENCE_NODE = 5;
  9.    short ENTITY_NODE = 6;
  10.    short PROCESSING_INSTRUCTION_NODE = 7;
  11.    short COMMENT_NODE = 8;
  12.    short DOCUMENT_NODE = 9;
  13.    short DOCUMENT_TYPE_NODE = 10;
  14.    short DOCUMENT_FRAGMENT_NODE = 11;
  15.    short NOTATION_NODE = 12;
  16.  
  17.    String getNodeName();
  18.  
  19.    String getNodeValue() throws DOMException;
  20.  
  21.    void setNodeValue(String var1) throws DOMException;
  22.  
  23.    short getNodeType();
  24.  
  25.    Node getParentNode();
  26.  
  27.    NodeList getChildNodes();
  28.  
  29.    Node getFirstChild();
  30.  
  31.    Node getLastChild();
  32.  
  33.    Node getPreviousSibling();
  34.  
  35.    Node getNextSibling();
  36.  
  37.    NamedNodeMap getAttributes();
  38.  
  39.    Document getOwnerDocument();
  40.  
  41.    Node insertBefore(Node var1, Node var2) throws DOMException;
  42.  
  43.    Node replaceChild(Node var1, Node var2) throws DOMException;
  44.  
  45.    Node removeChild(Node var1) throws DOMException;
  46.  
  47.    Node appendChild(Node var1) throws DOMException;
  48.  
  49.    boolean hasChildNodes();
  50.  
  51.    Node cloneNode(boolean var1);
  52. }
  53.